HTMLify
app.js
Views: 14 | Author: huxn-webdev
1 2 3 4 5 6 7 8 9 10 11 12 13 | const cursor = document.querySelector(".cursor"); document.addEventListener("mousemove", function (event) { // event.pageX --> across // event.pageY --> up and down // console.log(event); moveCursor(event.pageX, event.pageY); }); const moveCursor = function (pageX, pageY) { cursor.style.left = pageX + "px"; cursor.style.top = pageY + "px"; }; |